7795c8aa5d346c53ce91806982b309713adeab6d,src/test/java/org/sonar/plugins/web/checks/sonar/InputWithoutLabelCheckTest.java,InputWithoutLabelCheckTest,detected,#,36
Before Change
checkMessagesVerifier.verify(sourceCode.getViolations())
.next().atLine(6).withMessage("Associate a valid label to this input field.")
.next().atLine(19)
.next().atLine(23).withMessage("Add an 'id' attribute to this input field and associate it with a label.");
}
}
After Change
checkMessagesVerifier.verify(sourceCode.getViolations())
.next().atLine(6).withMessage("Associate a valid label to this input field.")
.next().atLine(19)
.next().atLine(23).withMessage("Add an \"id\" attribute to this input field and associate it with a label.")
.next().atLine(25).withMessage("Add an \"id\" attribute to this input field and associate it with a label.")
.next().atLine(26).withMessage("Add an \"id\" attribute to this input field and associate it with a label.")
.next().atLine(28).withMessage("Associate a valid label to this input field.")
.next().atLine(32);
}
}